home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / misc / spctr3e2 / demo next >
Text File  |  1992-12-11  |  912b  |  41 lines

  1. * demo control file
  2. .control
  3.  
  4. ********************************************
  5. * note: all commands need to be lower case *
  6. ********************************************
  7.  
  8. source demo.cir
  9. * the save command needs to be before the ac or tran commands
  10. * save data from only node 1 (the input node) and out
  11. save 1 out
  12.  
  13. * run will do the .analysis as listed in the input file
  14. run
  15. plot db(out) xlog
  16. source demo1.cir
  17.  
  18. * to add vin's current to the list of saved vectors
  19. * (no need to repeat nodes 1 and out)
  20. save vin#branch 
  21.  
  22. echo AC analysis
  23. ac dec 20 1 1meghz
  24. plot db(out) xlog
  25. echo transient analysis of filter (pulse input)
  26. tran 100us 6000us
  27. plot v(1) out
  28.  
  29. source demo2.cir
  30. echo AC analysis
  31. ac dec 15 1 100meghz
  32. plot db(out) xlog
  33. echo transient analysis with sin input (to be used with fourier analysis)
  34. tran .5us 200us
  35. plot v(1) out
  36. fourier 10k out
  37.  
  38. echo end of demo
  39. echo
  40. .endc
  41.